home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload Trio 2 / Shareware Overload Trio Volume 2 (Chestnut CD-ROM).ISO / dir37 / mxmnu241.zip / CUSTOM.INC < prev    next >
Text File  |  1992-12-11  |  2KB  |  78 lines

  1. Comment
  2. ========================================================================
  3.  
  4. MarxMenu supports several "Look and Feel" options. You can choose from:
  5.  
  6. NOVELL.INC
  7. BLOCK.INC
  8. GRID.INC
  9. SABER.INC
  10.  
  11. By including different files MarxMenu compiles the same menu with
  12. completely different looks.
  13.  
  14. Colors are set by editing these include files.
  15.  
  16. ========================================================================
  17. EndComment
  18.  
  19. ;----- Select include file.
  20.  
  21. Include 'NOVELL.INC'
  22. ;Include 'BLOCK.INC'
  23. ;Include 'GRID.INC'
  24. ;Include 'SABER.INC'
  25.  
  26. ;----- Turn this on if you like the Greek Column Look.
  27.  
  28. Greek On
  29.  
  30. ;----- Windowing Support Logic and Initialization Code
  31.  
  32. Include 'WINSUP.INC'
  33.  
  34. ;================< FEATURE CONTROL AREA >================
  35.  
  36. ;----- WORM.INC loads the example custom screen blanker program
  37.  
  38.   Include 'WORM.INC'
  39.  
  40. ;----- CRAWL.INC allows you to have moving text on the bottom line
  41.  
  42.   Include 'CRAWL.INC'
  43.  
  44. ;----- Set up the blank screen message if you want one.
  45.  
  46.   BlankMessage = ''
  47.  
  48. ;----- Change BlankTime to 0 if you do not want to blank the screen.
  49.  
  50.   BlankTime = 5
  51.  
  52. ;----- Change LogoffTime to number of minutes if you want timed Logoff.
  53.  
  54.   LogoffTime = 0
  55.  
  56. ;----- This makes the menu come back to the same menu level.
  57.  
  58.   SavePosition On
  59.  
  60. ;----- Control Explode effects.
  61.  
  62.   Explode On
  63.  
  64. ;----- Novell Network Options
  65.  
  66. if NetworkVersion
  67.    if NovConnection <> 0
  68.  
  69. ;----- Use Novell Password or LockWord to unlock the screen blanker.
  70.  
  71.       Now = NovServerTime   ;Keeps workstation time in sync with server
  72.       UseNovPassword Off    ;change to On to activate this feature
  73.    else
  74.       LockWord = ''         ;place lockword here for non novell menus
  75.    endif
  76. endif
  77.  
  78.